home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / angry / scene3_4.dir / 00230_Script_rewind button to scene 3 < prev    next >
Text File  |  1999-03-01  |  714b  |  38 lines

  1.  
  2. on mouseWithin me
  3.   cursor [the memberNum of member "pointy", the memberNum of member "pointy_mask"]
  4. end
  5.  
  6. on mouseLeave me
  7.   cursor -1
  8. end
  9.  
  10. on mouseDown me
  11.   repeat with x = 1 to 6
  12.     if soundBusy(x) then 
  13.       set the volume of sound x to 255
  14.       sound stop x
  15.     end if
  16.   end repeat
  17.   
  18.   puppetSprite 7, FALSE --lori eyes
  19.   set the visible of sprite 7 = FALSE
  20.   puppetSprite 8, FALSE --shock-kid
  21.   set the visible of sprite 8 to FALSE
  22.   
  23.   puppetSprite 95, FALSE -- the rewind button coming from scene4
  24.   set the loc of sprite(95) = point(1000, 1000)
  25.   updateStage
  26.   
  27.   
  28.   
  29.   cursor 200
  30. end
  31.  
  32. on mouseUp me
  33.   cursor -1
  34.   go to frame "scene2" of movie "scene1_2"
  35.   
  36. end 
  37.  
  38.